home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2008 April / PCgo 2008-04 (DVD).iso / interface / contents / demoversionen_3846 / 13664 / files / Data1.cab / tcimagebridge.h < prev    next >
Encoding:
C/C++ Source or Header  |  2005-11-23  |  918 b   |  23 lines

  1. // The following ifdef block is the standard way of creating macros which make exporting 
  2. // from a DLL simpler. All files within this DLL are compiled with the TCIMAGEBRIDGE_EXPORTS
  3. // symbol defined on the command line. this symbol should not be defined on any project
  4. // that uses this DLL. This way any other project whose source files include this file see 
  5. // TCIMAGEBRIDGE_API functions as being imported from a DLL, whereas this DLL sees symbols
  6. // defined with this macro as being exported.
  7. #ifdef TCIMAGEBRIDGE_EXPORTS
  8. #define TCIMAGEBRIDGE_API __declspec(dllexport)
  9. #else
  10. #define TCIMAGEBRIDGE_API __declspec(dllimport)
  11. #endif
  12.  
  13. // This class is exported from the TCImageBridge.dll
  14. class TCIMAGEBRIDGE_API CTCImageBridge {
  15. public:
  16.     CTCImageBridge(void);
  17.     // TODO: add your methods here.
  18. };
  19.  
  20. //extern TCIMAGEBRIDGE_API int nTCImageBridge;
  21.  
  22. //TCIMAGEBRIDGE_API int fnTCImageBridge(void);
  23.